home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Mixed Mode Maddness / Emulator / Header / GetValue.h < prev    next >
Text File  |  2000-06-23  |  745b  |  29 lines

  1. #ifndef ____GETVALUE____
  2.  
  3. #define ____GETVALUE____ 1
  4.  
  5. #include "global.h"
  6.  
  7. UInt8 GetImmediateValue(void);
  8. UInt8 GetAbsoluteValue(void);
  9. UInt8 GetZeroPageValue(void);
  10. UInt8 GetZeroPageXValue(void);
  11. UInt8 GetIndXValue(void);
  12. UInt8 GetIndYValue(void);
  13. UInt8 GetAbsoluteXValue(void);
  14. UInt8 GetAbsoluteYValue(void);
  15. UInt8 GetRelativeValue(void);
  16. UInt8 GetZeroPageYValue(void);
  17. UInt8* GetAbsoluteAddress(void);
  18. UInt8* GetZeroPageAddress(void);
  19. UInt8* GetAccumulatorAddress(void);
  20. UInt8* GetZeroPageXAddress(void);
  21. UInt8* GetAbsoluteXAddress(void);
  22. UInt16 GetAbsolutePCAddress(void);
  23. UInt16 GetIndirectPCAddress(void);
  24. UInt8* GetZeroPageYAddress(void);
  25. UInt8* GetIndXAddress(void);
  26. UInt8* GetIndYAddress(void);
  27. UInt8* GetAbsoluteYAddress(void);
  28.  
  29. #endif